Stiffener Figures

In [51]:
#this code is just to load the necessary libraries
import plotly.graph_objects as go

#load saved data
import pickle

#load saved plot.ly figures
with open('../plotlyfigs/stiffener-figs.pickle','rb') as f:
    fig=pickle.load(f)

#plot all
for t in fig:
    test = go.Figure(t)
    test.show(config={"showLink": True},renderer="notebook")
In [ ]: